home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / minilin / minilin.exe / ETC / DIR_COLO.{_R < prev    next >
Text File  |  1994-02-15  |  2KB  |  68 lines

  1. # Configuration file for the color ls utility
  2. # This file goes in the /etc directory, and must be world readable.
  3.  
  4. # COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
  5. # pipes. 'all' adds color characters to all output. 'none' shuts colorization
  6. # off.
  7. COLOR tty
  8.  
  9. # Below, there should be one TERM entry for each termtype that is colorizable
  10. TERM console
  11. TERM con132x25
  12. TERM con132x30
  13. TERM con132x43
  14. TERM con132x60
  15. TERM con80x25
  16. TERM con80x28
  17. TERM con80x30
  18. TERM con80x43
  19. TERM con80x60
  20. TERM xterm
  21. TERM vt100
  22.  
  23. # EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
  24. EIGHTBIT 1
  25.  
  26. # Below are the color init strings for the basic file types. A color init
  27. # string consists of one or more of the following numeric codes:
  28. # Attribute codes: 
  29. # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
  30. # Text color codes:
  31. # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
  32. # Background color codes:
  33. # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
  34. NORMAL 00    # global default, although everything should be something.
  35. FILE 00     # normal file
  36. DIR 01;34     # directory
  37. LINK 01;36     # symbolic link
  38. FIFO 40;33    # pipe
  39. SOCK 01;35    # socket
  40. BLK 40;33;01    # block device driver
  41. CHR 40;33;01     # character device driver
  42.  
  43. # This is for files with execute permission:
  44. EXEC 01;32 
  45.  
  46. # List any file extensions like '.gz' or '.tar' that you would like ls
  47. # to colorize below. Put the extension, a space, and the color init string.
  48. # (and any comments you want to add after a '#')
  49. .cmd 01;32 # executables (bright green)
  50. .exe 01;32
  51. .com 01;32
  52. .btm 01;32
  53. .bat 01;32
  54. .tar 01;31 # archives or compressed (bright red)
  55. .tgz 01;31
  56. .arj 01;31
  57. .taz 01;31
  58. .lzh 01;31
  59. .zip 01;31
  60. .z   01;31
  61. .Z   01;31
  62. .gz  01;31
  63. .jpg 01;35 # image formats
  64. .gif 01;35
  65. .bmp 01;35
  66. .xbm 01;35
  67. .xpm 01;35
  68.